#help
Description: Launch the built-in help system.
def help():
'''
Launch the built-in help system
'''
def help(obj):
'''
Launch the built-in help system
:param obj: The object to view help for
'''
Example:
help()
help(str)
help(object)